home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / redakcyjne / programy / PSPad editor 4.5.4 build 2356 beta / pspad454inst_en.exe / {app} / Context / MySql.DEF < prev    next >
Text File  |  2003-10-25  |  17KB  |  554 lines

  1. ; PSPad clip definition file for MySQL
  2. ;
  3. ; author: ing. Jan Fiala  pspad@wo.cz
  4. ; last revision: 30.8.2003
  5. ;
  6. [IFNULL | if expr1 is not NULL, IFNULL() returns expr1, else it returns expr2]
  7. IFNULL(|expr1,expr2)
  8. [NULLIF | if expr1 = expr2 is true, return NULL else return expr1]
  9. NULLIF(|expr1,expr2)
  10. [IF | if expr1 is TRUE (expr1 <> 0 and expr1 <> NULL) then IF() returns expr2, else it returns expr3]
  11. IF(|expr1,expr2,expr3)
  12. [CASE value | returns the result where value=compare-value]
  13. CASE |value WHEN [compare-value] THEN result [WHEN [compare-value] THEN result ...] [ELSE result] END
  14. [CASE when | returns the result for the first condition, which is true]
  15. CASE WHEN [|condition] THEN result [WHEN [condition] THEN result ...] [ELSE result] END
  16. [ASCII | returns the ASCII code value of the leftmost character of the string str]
  17. ASCII(|str)
  18. [ORD | returns the the ASCII code value of the character]
  19. ORD(|str)
  20. [CONV | converts numbers between different number bases]
  21. CONV(|N,from_base,to_base)
  22. [BIN | returns a string representation of the binary value of N, where N is a longlong (BIGINT) number]
  23. BIN(|N)
  24. [OCT | returns a string representation of the octal value of N]
  25. OCT(|N)
  26. [HEX | returns a string representation of the hexadecimal value of N]
  27. HEX(|N)
  28. [CHAR | returns a string consisting of the characters given by the ASCII code]
  29. CHAR(|N,...)
  30. [CONCAT | returns the string from concatenating the arguments]
  31. CONCAT(|str1,str2,...)
  32. [CONCAT_WS | the first argument is the separator for the rest of the arguments]
  33. CONCAT_WS(|separator, str1, str2,...)
  34. [LENGTH | returns the length of the string]
  35. LENGTH(|str)
  36. [OCTET_LENGTH | returns the length of the string]
  37. OCTET_LENGTH(|str)
  38. [CHAR_LENGTH | returns the length of the string]
  39. CHAR_LENGTH(|str)
  40. [CHARACTER_LENGTH | returns the length of the string str]
  41. CHARACTER_LENGTH(|str)
  42. [LOCATE | returns the position of the first occurrence of substring]
  43. LOCATE(|substr,str)
  44. [POSITION | returns the position of the first occurrence of substring]
  45. POSITION(|substr IN str)
  46. [LOCATE | returns the position of the first occurrence of substring]
  47. LOCATE(|substr,str,pos)
  48. [INSTR | returns the position of the first occurrence of substring]
  49. INSTR(|str,substr)
  50. [LPAD | returns the string str, left-padded with the string padstr]
  51. LPAD(|str,len,padstr)
  52. [RPAD | returns the string str, right-padded with the string padstr]
  53. RPAD(|str,len,padstr)
  54. [LEFT | returns the leftmost len characters from the string]
  55. LEFT(|str,len)
  56. [RIGHT | returns the rightmost len characters from the string]
  57. RIGHT(|str,len)
  58. [SUBSTRING | returns a substring from string str, starting at position pos]
  59. SUBSTRING(|str,pos,len)
  60. [SUBSTRING | returns a substring from string str, starting at position pos]
  61. SUBSTRING(|str FROM pos FOR len)
  62. [MID | returns a substring from string str, starting at position pos]
  63. MID(|str,pos,len)
  64. [SUBSTRING | returns a substring from string str, starting at position pos]
  65. SUBSTRING(|str,pos)
  66. [SUBSTRING | returns a substring from string str starting at position pos]
  67. SUBSTRING(|str FROM pos)
  68. [SUBSTRING_INDEX | returns the substring from string str before count occurrences of the delimiter delim]
  69. SUBSTRING_INDEX(|str,delim,count)
  70. [LTRIM | returns the string str with leading space characters removed]
  71. LTRIM(|str)
  72. [RTRIM | returns the string str with trailing space characters removed]
  73. RTRIM(|str)
  74. [TRIM | returns the string str with all remstr prefixes and/or suffixes removed]
  75. TRIM(|[[BOTH | LEADING | TRAILING] [remstr] FROM] str)
  76. [SOUNDEX | returns a soundex string from str]
  77. SOUNDEX(|str)
  78. [SPACE | returns a string consisting of N space characters]
  79. SPACE(|N)
  80. [REPLACE | returns the string str with from_str replaced by the string to_str]
  81. REPLACE(|str,from_str,to_str)
  82. [REPEAT | returns a string consisting of the string str repeated count times]
  83. REPEAT(|str,count)
  84. [REVERSE | returns the string str with the order of the characters reversed]
  85. REVERSE(|str)
  86. [INSERT | string beginning at position pos and len characters long is replaced by the newstr]
  87. INSERT(|str,pos,len,newstr)
  88. [ELT | returns str1 if N = 1, str2 if N = 2, and so on]
  89. ELT(|N,str1,str2,str3,...)
  90. [FIELD | returns the index of str in the str1, str2, str3, ... list]
  91. FIELD(|str,str1,str2,str3,...)
  92. [FIND_IN_SET | returns a value 1 to N if the string str is in the list strlist consisting of N substrings]
  93. FIND_IN_SET(|str,strlist)
  94. [MAKE_SET | returns a set consisting of the strings]
  95. MAKE_SET(|bits,str1,str2,...)
  96. [EXPORT_SET | returns a string frm set separated with 'separator']
  97. EXPORT_SET(|bits,on,off,[separator,[number_of_bits]])
  98. [LCASE | all characters are changed to lowercase]
  99. LCASE(|str)
  100. [LOWER | all characters are changed to lowercase]
  101. LOWER(|str)
  102. [UCASE | all characters changed to uppercase]
  103. UCASE(|str)
  104. [UPPER | all characters changed to uppercase]
  105. UPPER(|str)
  106. [LOAD_FILE | reads the file and returns the file contents as a string]
  107. LOAD_FILE(|file_name)
  108. [STRCMP | returns 0 if strings are same, -1 if first is smaller, 1 otherwise]
  109. STRCMP(|expr1,expr2)
  110. [MATCH  | is used for full-text search and returns relevance]
  111. MATCH (|col1,col2,...) AGAINST (expr)
  112. [ABS | returns the absolute value of X]
  113. ABS(|X)
  114. [SIGN | returns the sign of the argument as -1, 0, or 1, depending on whether X is negative, zero, or positive]
  115. SIGN(|X)
  116. [MOD | modulo (like the % operator in C). Returns the remainder of N divided by M]
  117. MOD(|N,M)
  118. [FLOOR | returns the largest integer value not greater than X]
  119. FLOOR(|X)
  120. [CEILING | returns the smallest integer value not less than X]
  121. CEILING(|X)
  122. [ROUND | returns the argument X, rounded to the nearest integer]
  123. ROUND(|X)
  124. [ROUND | returns the argument X, rounded to a number with D decimals. If D is 0, the result will have no decimal point or fractional part]
  125. ROUND(|X,D)
  126. [EXP | returns the value of e (the base of natural logarithms) raised to the power of X]
  127. EXP(|X)
  128. [LOG | returns the natural logarithm of X]
  129. LOG(|X)
  130. [LOG10 | returns the base-10 logarithm of X]
  131. LOG10(|X)
  132. [POW | returns the value of X raised to the power of Y]
  133. POW(|X,Y)
  134. [POWER | returns the value of X raised to the power of Y]
  135. POWER(|X,Y)
  136. [SQRT | returns the non-negative square root of X]
  137. SQRT(|X)
  138. [PI | returns the value of PI]
  139. PI(|)
  140. [COS | returns the cosine of X, where X is given in radians]
  141. COS(|X)
  142. [SIN | returns the sine of X, where X is given in radians]
  143. SIN(|X)
  144. [TAN | returns the tangent of X, where X is given in radians]
  145. TAN(|X)
  146. [ACOS | returns the arc cosine of X]
  147. ACOS(|X)
  148. [ASIN | returns the arc sine of X]
  149. ASIN(|X)
  150. [ATAN | returns the arc tangent of X]
  151. ATAN(|X)
  152. [ATAN2 | returns the arc tangent of the two variables X and Y]
  153. ATAN2(|Y,X)
  154. [COT | returns the cotangent of X]
  155. COT(|X)
  156. [RAND | random floating-point value in the range 0 to 1.0]
  157. RAND(|)
  158. [RAND | random floating-point value in the range 0 to 1.0]
  159. RAND(|N)
  160. [LEAST | returns the smallest argument]
  161. LEAST(|X,Y,...)
  162. [GREATEST | returns the largest argument]
  163. GREATEST(|X,Y,...)
  164. [DEGREES | returns the argument X, converted from radians to degrees]
  165. DEGREES(|X)
  166. [RADIANS | returns the argument X, converted from degrees to radians]
  167. RADIANS(|X)
  168. [TRUNCATE | returns the number X, truncated to D decimals]
  169. TRUNCATE(|X,D)
  170. [DAYOFWEEK | returns the weekday index for date (1 = Sundayà)]
  171. DAYOFWEEK(|date)
  172. [WEEKDAY | returns the weekday index for date (0 = Mondayà)]
  173. WEEKDAY(|date)
  174. [DAYOFMONTH | returns the day of the month for date, in the range 1 to 31]
  175. DAYOFMONTH(|date)
  176. [DAYOFYEAR | returns the day of the year for date, in the range 1 to 366]
  177. DAYOFYEAR(|date)
  178. [MONTH | returns the month for date, in the range 1 to 12]
  179. MONTH(|date)
  180. [DAYNAME | returns the name of the weekday for date]
  181. DAYNAME(|date)
  182. [MONTHNAME | returns the name of the month for date]
  183. MONTHNAME(|date)
  184. [QUARTER | returns the quarter of the year for date, in the range 1 to 4]
  185. QUARTER(|date)
  186. [WEEK | returns the week for date]
  187. WEEK(|date)
  188. [WEEK | returns the week for date with start day of week (0 Sunday, 1 Monday)]
  189. WEEK(|date,first)
  190. [YEAR | returns the year for date, in the range 1000 to 9999]
  191. YEAR(|date)
  192. [YEARWEEK | returns year and week for a date]
  193. YEARWEEK(|date)
  194. [YEARWEEK | returns year and week for a date]
  195. YEARWEEK(|date,first)
  196. [HOUR | returns the hour for time, in the range 0 to 23]
  197. HOUR(|time)
  198. [MINUTE | returns the minute for time, in the range 0 to 59]
  199. MINUTE(|time)
  200. [SECOND | returns the second for time, in the range 0 to 59]
  201. SECOND(|time)
  202. [PERIOD_ADD | adds N months to period P (format YYYYMM)]
  203. PERIOD_ADD(|P,N)
  204. [PERIOD_DIFF | number of months between periods (format YYYYMM)]
  205. PERIOD_DIFF(|P1,P2)
  206. [DATE_ADD | function perform date arithmetic]
  207. DATE_ADD(|date,INTERVAL expr type)
  208. [DATE_SUB | function perform date arithmetic]
  209. DATE_SUB(|date,INTERVAL expr type)
  210. [ADDDATE | function perform date arithmetic]
  211. ADDDATE(|date,INTERVAL expr type)
  212. [SUBDATE | function perform date arithmetic]
  213. SUBDATE(|date,INTERVAL expr type)
  214. [EXTRACT | extracts parts from the date]
  215. EXTRACT(|type FROM date)
  216. [TO_DAYS | returns a daynumber  for given a date]
  217. TO_DAYS(|date)
  218. [FROM_DAYS | given a daynumber N, returns a DATE value]
  219. FROM_DAYS(|N)
  220. [DATE_FORMAT | formats the date value according to the format string]
  221. DATE_FORMAT(|date,format)
  222. [TIME_FORMAT | formats the time value according to the format string]
  223. TIME_FORMAT(|time,format)
  224. [CURDATE | returns today's date as 'YYYY-MM-DD' or YYYYMMDD]
  225. CURDATE(|)
  226. [CURRENT_DATE | returns today's date as 'YYYY-MM-DD' or YYYYMMDD]
  227. CURRENT_DATE
  228. [CURTIME | returns the current time as in 'HH:MM:SS' or HHMMSS]
  229. CURTIME(|)
  230. [CURRENT_TIME | returns the current time as in 'HH:MM:SS' or HHMMSS]
  231. CURRENT_TIME
  232. [NOW | returns the current date and time as a value]
  233. NOW(|)
  234. [SYSDATE | returns the current date and time as a value]
  235. SYSDATE(|)
  236. [CURRENT_TIMESTAMP | returns the current date and time as a value]
  237. CURRENT_TIMESTAMP
  238. [UNIX_TIMESTAMP | returns a Unix timestamp (seconds since '1970-01-01 00:00:00' GMT)]
  239. UNIX_TIMESTAMP(|)
  240. [UNIX_TIMESTAMP | returns a Unix timestamp (seconds since '1970-01-01 00:00:00' GMT)]
  241. UNIX_TIMESTAMP(|date)
  242. [FROM_UNIXTIME | returns a representation of the unix_timestamp]
  243. FROM_UNIXTIME(|unix_timestamp)
  244. [FROM_UNIXTIME | returns a string representation of the Unix timestampx']
  245. FROM_UNIXTIME(|unix_timestamp,format)
  246. [SEC_TO_TIME | seconds are converted to hours, minutes, and seconds]
  247. SEC_TO_TIME(|seconds)
  248. [TIME_TO_SEC | returns the time argument, converted to seconds]
  249. TIME_TO_SEC(|time)
  250. [BIT_COUNT | returns the number of bits that are set in the argument N]
  251. BIT_COUNT(|N)
  252. [DATABASE | returns the current database name]
  253. DATABASE(|)
  254. [USER | returns the current MySQL user name]
  255. USER(|)
  256. [SYSTEM_USER | returns the current MySQL user name]
  257. SYSTEM_USER(|)
  258. [SESSION_USER | returns the current MySQL user name]
  259. SESSION_USER(|)
  260. [PASSWORD | password string from the plaintext password str]
  261. PASSWORD(|str)
  262. [ENCRYPT | encrypt str using the Unix crypt() system call]
  263. ENCRYPT(|str[,salt])
  264. [ENCODE | encrypt str using pass_str as the password]
  265. ENCODE(|str,pass_str)
  266. [DECODE | descrypts the encrypted string crypt_str using pass_str]
  267. DECODE(|crypt_str,pass_str)
  268. [MD5 | calculates a MD5 checksum for the string]
  269. MD5(|string)
  270. [LAST_INSERT_ID | last automatically generated value that was inserted]
  271. LAST_INSERT_ID(|[expr])
  272. [FORMAT | formats number X to format '#,###,###.##', rounded to D decimals]
  273. FORMAT(|X,D)
  274. [VERSION | returns a string indicating the MySQL server version]
  275. VERSION(|)
  276. [CONNECTION_ID | returns the connection id (thread_id) for the connection]
  277. CONNECTION_ID(|)
  278. [GET_LOCK | tries to obtain lock with a name given by the string str, with a timeout]
  279. GET_LOCK(|str,timeout)
  280. [RELEASE_LOCK | releases the lock named by the string str]
  281. RELEASE_LOCK(|str)
  282. [BENCHMARK | executes the expression expr repeatedly count times]
  283. BENCHMARK(|count,expr)
  284. [INET_NTOA | returns the network address (4 or 8 byte) for the numeric expression]
  285. INET_NTOA(|expr)
  286. [INET_ATON | returns integer that represents numeric value for network address]
  287. INET_ATON(|expr)
  288. [MASTER_POS_WAIT | blocks until slave reaches specified position in master log]
  289. MASTER_POS_WAIT(|log_name, log_pos)
  290. [SELECT | SELECT command syntax ]
  291. SELECT |[STRAIGHT_JOIN] [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT]
  292.        [HIGH_PRIORITY]
  293.        [DISTINCT | DISTINCTROW | ALL]
  294.     select_expression,...
  295.     [INTO {OUTFILE | DUMPFILE} 'file_name' export_options]
  296.     [FROM table_references
  297.         [WHERE where_definition]
  298.         [GROUP BY {unsigned_integer | col_name | formula} [ASC | DESC], ...]
  299.         [HAVING where_definition]
  300.         [ORDER BY {unsigned_integer | col_name | formula} [ASC | DESC] ,...]
  301.         [LIMIT [offset,] rows]
  302.         [PROCEDURE procedure_name]
  303.         [FOR UPDATE | LOCK IN SHARE MODE]]
  304. [INSERT values | INSERT command syntax]
  305. INSERT |[LOW_PRIORITY | DELAYED] [IGNORE]
  306.        [INTO] tbl_name [(col_name,...)]
  307.        VALUES (expression,...),(...),...
  308. [INSERT select | INSERT command syntax]
  309. INSERT |[LOW_PRIORITY | DELAYED] [IGNORE]
  310.        [INTO] tbl_name [(col_name,...)]
  311.        SELECT ...
  312. [INSERT set | INSERT command syntax]
  313. INSERT |[LOW_PRIORITY | DELAYED] [IGNORE]
  314.        [INTO] tbl_name
  315.        SET col_name=expression, col_name=expression, ...
  316. [UPDATE | UPDATE command syntax]
  317. UPDATE |[LOW_PRIORITY] [IGNORE] tbl_name
  318.     SET col_name1=expr1, [col_name2=expr2, ...]
  319.     [WHERE where_definition]
  320.     [LIMIT #]
  321. [DELETE | DELETE command syntax]
  322. DELETE |[LOW_PRIORITY] FROM tbl_name
  323.     [WHERE where_definition]
  324.     [LIMIT rows]
  325. [TRUNCATE TABLE | TRUNCATE TABLE command syntax]
  326. TRUNCATE TABLE |table_name
  327. [REPLACE values | REPLACE command syntax]
  328. REPLACE |[LOW_PRIORITY | DELAYED]
  329.     [INTO] tbl_name [(col_name,...)]
  330.     VALUES (expression,...)
  331. [REPLACE select | REPLACE command syntax]
  332. REPLACE |[LOW_PRIORITY | DELAYED]
  333.     [INTO] tbl_name [(col_name,...)]
  334.     SELECT ...
  335. [REPLACE set | REPLACE command syntax]
  336. REPLACE |[LOW_PRIORITY | DELAYED]
  337.     [INTO] tbl_name
  338.     SET col_name=expression, col_name=expression,...
  339. [CREATE DATABASE | creates databaze db_name]
  340. CREATE DATABASE |[IF NOT EXISTS] db_name
  341. [DROP DATABASE | drop database db_name]
  342. DROP DATABASE |[IF EXISTS] db_name
  343. [CREATE TABLE | creates table tbl_name]
  344. CREATE |[TEMPORARY] TABLE [IF NOT EXISTS] tbl_name [(create_definition,...)]
  345.   [table_options] [select_statement]
  346. [ALTER TABLE | ALTER TABLE tbl_name]
  347. ALTER |[IGNORE] TABLE tbl_name alter_spec [, alter_spec ...]
  348. [RENAME TABLE | RENAME TABLE tbl_name TO new_table_name]
  349. RENAME TABLE |tbl_name TO new_table_name[, tbl_name2 TO new_table_name2,...]
  350. [DROP TABLE | DROP TABLE tbl_name]
  351. DROP TABLE |[IF EXISTS] tbl_name [, tbl_name,...] [RESTRICT | CASCADE]
  352. [CREATE INDEX | CREATE INDEX index_name ON tbl_name]
  353. CREATE |[UNIQUE|FULLTEXT] INDEX index_name ON tbl_name (col_name[(length)],... )
  354. [DROP INDEX | DROP INDEX index_name ON tbl_name]
  355. DROP INDEX |index_name ON tbl_name
  356. [LOCK TABLES | LOCK TABLES tbl_name]
  357. LOCK TABLES tbl_name [AS alias] {READ | [READ LOCAL] | [LOW_PRIORITY] WRITE}
  358.             [, tbl_name {READ | [LOW_PRIORITY] WRITE} ...]
  359. [UNLOCK TABLES | UNLOCK TABLES locked previous LOCK TABLE command]
  360. UNLOCK TABLES
  361. [SET TRANSACTION LEVEL | set transaction isolation level]
  362. SET |[GLOBAL | SESSION] TRANSACTION ISOLATION LEVEL
  363.     [READ UNCOMMITTED | READ COMMITTED | REPEATABLE READ | SERIALIZABLE]
  364. ;
  365. [Keywords]
  366. ABS()
  367. ACOS()
  368. ADDDATE()
  369. ALL
  370. ALTER
  371. ASC
  372. ASCII()
  373. ASIN()
  374. ATAN()
  375. ATAN2()
  376. AVG()
  377. BENCHMARK()
  378. BIN()
  379. BIT_AND()
  380. BIT_COUNT()
  381. BIT_OR()
  382. CASE
  383. CEILING()
  384. COALESCE()
  385. CONCAT()
  386. CONCAT_WS()
  387. CONNECTION_ID()
  388. CONV()
  389. COS()
  390. COT()
  391. COUNT()
  392. CREATE
  393. CURDATE()
  394. CURTIME()
  395. DATABASE()
  396. DATE_ADD()
  397. DATE_FORMAT()
  398. DATE_SUB()
  399. DAYNAME()
  400. DAYOFMONTH()
  401. DAYOFWEEK()
  402. DAYOFYEAR()
  403. DECODE()
  404. DEGREES()
  405. DELAYED
  406. DELETE
  407. DESC
  408. DESCRIBE
  409. DISTINCT
  410. DISTINCTROW
  411. DROP
  412. DUMPFILE
  413. ELT()
  414. ENCODE()
  415. ENCRYPT()
  416. EXP()
  417. EXPORT_SET()
  418. EXTRACT()
  419. FIELD()
  420. FIND_IN_SET()
  421. FLOOR()
  422. FORMAT()
  423. FROM
  424. FROM_DAYS()
  425. FROM_UNIXTIME()
  426. GET_LOCK()
  427. GREATEST()
  428. HEX()
  429. HIGH_PRIORITY
  430. HOUR()
  431. CHAR()
  432. CHAR_LENGTH()
  433. CHARACTER_LENGTH()
  434. IF EXISTS
  435. IF NOT EXISTS
  436. IF()
  437. IFNULL()
  438. INET_ATON()
  439. INET_NTOA()
  440. INSERT
  441. INSTR()
  442. INTERVAL
  443. INTO
  444. ISNULL()
  445. LAST_INSERT_ID()
  446. LCASE()
  447. LEADING
  448. LEAST()
  449. LEFT()
  450. LENGTH()
  451. LIMIT
  452. LOAD_DATA_INFILE
  453. LOAD_FILE()
  454. LOCATE()
  455. LOCK
  456. LOG()
  457. LOG10()
  458. LOW_PRIORITY
  459. LOWER()
  460. LPAD()
  461. LTRIM()
  462. MAKE_SET()
  463. MAX()
  464. MD5()
  465. MID()
  466. MIN()
  467. MINUTE()
  468. MOD()
  469. MONTH()
  470. MONTHNAME()
  471. NOW()
  472. NULLIF
  473. OCT()
  474. OCTET_LENGTH()
  475. ORD()
  476. OUTFILE
  477. PASSWORD()
  478. PERIOD_ADD()
  479. PERIOD_DIFF()
  480. PI()
  481. POSITION()
  482. POW()
  483. POWER()
  484. PROCEDURE
  485. QUARTER()
  486. RADIANS()
  487. RAND()
  488. READ COMMITTED
  489. READ LOCAL
  490. READ UNCOMMITTED
  491. RELEASE_LOCK()
  492. REPEAT()
  493. REPEATABLE READ
  494. REPLACE
  495. REPLACE()
  496. REVERSE()
  497. RIGHT()
  498. ROUND()
  499. RPAD()
  500. RTRIM()
  501. SEC_TO_TIME()
  502. SECOND()
  503. SELECT
  504. SERIALIZABLE
  505. SESSION
  506. SESSION_USER()
  507. SET
  508. SHOW
  509. SIGN()
  510. SIN()
  511. SOUNDEX()
  512. SPACE()
  513. SQL_BIG_RESULT
  514. SQL_BUFFER_RESULT
  515. SQL_SMALL_RESULT
  516. SQRT()
  517. STD()
  518. STDDEV()
  519. STRAIGHT_JOIN
  520. STRCMP()
  521. SUBDATE()
  522. SUBSTRING()
  523. SUBSTRING_INDEX()
  524. SUM()
  525. SYSDATE()
  526. SYSTEM_USER()
  527. TABLE
  528. TAN()
  529. TEMPORARY
  530. TIME_FORMAT()
  531. TIME_TO_SEC()
  532. TO_DAYS()
  533. TRAILING
  534. TRANSACTION ISOLATION LEVEL
  535. TRIM()
  536. TRUNCATE
  537. TRUNCATE()
  538. UCASE()
  539. UNIX_TIMESTAMP()
  540. UNLOCK
  541. UPDATE
  542. UPPER()
  543. USE
  544. USER()
  545. VALUES
  546. VERSION()
  547. WEEK()
  548. WEEKDAY()
  549. WHERE
  550. WRITE
  551. YEAR()
  552. YEARWEEK()
  553.  
  554.